/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      topoSetDict;
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

actions
(
    
    {
        name    bs;
        type    cellSet;
        action  new;
        source  boxToCell;
        sourceInfo
        {
            box  (-0.25 -0.1 -0.025)(0.15 0.1 0.025);   
        }
    } 

    {
        name    metal;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        sourceInfo { set bs; }
    }
    {
        name    as;
        type    cellSet;
        action  new;
        source  boxToCell;
        sourceInfo
        {
            box  (-0.25 -0.25 -0.25)(0.25 0.25 0.25);
        }
    }
    {
        name    as;
        type    cellSet;
        action  subtract;
        source  boxToCell;
        sourceInfo
        {
            box  (-0.25 -0.1 -0.025)(0.15 0.1 0.025);
	    
        }
    }
    {
        name    fluid;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        sourceInfo { set as; }
    }
    

);

// ************************************************************************* //
